home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / pascal / swag / comm.swg / 0061_Sending A Break Signal Over the Modem.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-03-26  |  166 b   |  9 lines

  1. {
  2. Set your modem to send a break signal
  3. Then enable break: (assuming COM1)
  4. }
  5.  
  6. port[$3fb] := port[$3fb] or $40;
  7. delay(100);
  8. port[$3fb] := port[$3fb] and $bf;
  9.